@import url('https://api.fontshare.com/v2/css?f[]=clash-display@200,300,400,500,600,700&display=swap');

:root {
    --primary-red: #c5202b;
    --soft-bg: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    --font-heading: 'Clash Display', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-story-heading: 'Cinzel', serif;
    --font-story-body: 'Plus Jakarta Sans', sans-serif;

    /* Premium Gradients */
    --grad-cream-blush: linear-gradient(180deg, #fffcf9 0%, #fff0f0 100%);
    --grad-lavender-white: linear-gradient(180deg, #f8f7ff 0%, #ffffff 100%);
    --grad-mint-white: linear-gradient(180deg, #f0fff4 0%, #ffffff 100%);
    --grad-blue-white: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
}

body {
    font-family: var(--font-body) !important;
}


.premium-hero {
    background: var(--soft-bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Abstract Blur Shapes */
.blur-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
}

.shape-1 {
    background: rgba(197, 32, 43, 0.15);
    top: -100px;
    right: -100px;
}

.shape-2 {
    background: rgba(197, 32, 43, 0.1);
    bottom: -100px;
    left: -100px;
}

.hero-content {
    padding-top: 48px;
    position: relative;
    z-index: 10;
}

.hero-label {
    display: inline-block;
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    padding: 6px 16px;
    background: rgba(197, 32, 43, 0.08);
    border-radius: 100px;
    border: 1px solid rgba(197, 32, 43, 0.1);
    animation: pulse-dot 2s infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--primary-red);
}

.hero-description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

/* Buttons */
.btn-primary-premium {
    background-color: #0F172A !important;
    /* Deep Navy for premium look */
    color: white !important;
    padding: 18px 38px !important;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-primary-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.25);
    background-color: #1E293B;
}

.btn-secondary-premium {
    background-color: transparent;
    color: #0F172A !important;
    padding: 18px 38px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #E2E8F0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-secondary-premium:hover {
    border-color: #0F172A;
    background-color: rgba(15, 23, 42, 0.02);
    transform: translateY(-3px);
}

/* Image Animation */
.hero-image-wrapper {
    position: relative;
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

.hero-image-wrapper img {
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.12));
    border-radius: 20px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 991px) {
    .premium-hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2.8rem;
        text-align: center;
    }

    .hero-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 50px;

    }



    .btn-secondary-premium {
        margin-left: 0;

        padding: 12px 22px !important;
    }

    .btn-primary-premium {

        padding: 12px 22px !important;
    }
}

/* ==========================================================================
   Premium Bootstrap 5 Navbar
   ========================================================================== */

/* --- Base Navbar --- */
.bp-navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Scrolled State --- */
.bp-navbar.navbar-scrolled {
    padding: 10px 0 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

/* --- Logo --- */
.bp-navbar-brand img {
    height: 38px;
    transition: opacity 0.3s ease;
}

.bp-navbar-brand:hover img {
    opacity: 0.85;
}

/* --- Desktop Nav Links --- */
.bp-nav-links {
    margin: 0;
    padding: 0;
}

.bp-nav-link {
    font-family: var(--font-heading) !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    color: #1a1a1a !important;
    padding: 8px 16px !important;
    border-radius: 100px !important;
    transition: background 0.25s ease, color 0.25s ease !important;
    position: relative;
    white-space: nowrap;
}

.bp-nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: #c5202b;
    border-radius: 2px;
    transition: transform 0.3s ease;
    transform-origin: center;
}

.bp-nav-link:hover {
    color: #c5202b !important;
    background: rgba(197, 32, 43, 0.06) !important;
}

.bp-nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* --- CTA Button --- */
.bp-cta-btn {
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    color: #ffffff !important;
    background: #0F172A !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 10px 24px !important;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none !important;
}

.bp-cta-btn:hover {
    background: #1E293B !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25) !important;
    color: #ffffff !important;
}

/* --- Custom Hamburger Icon --- */
.bp-toggler {
    border: none !important;
    background-color: rgba(197, 32, 43, 0.1) !important;
    color: #c5202b;
    width: 44px;
    height: 44px;
    border-radius: 10px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    cursor: pointer;
    transition: background 0.3s ease !important;
    box-shadow: none !important;
}

.bp-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

.bp-toggler:hover {
    background: rgba(197, 32, 43, 0.1);

}

.bp-toggler-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 22px;
    height: 16px;
}

.bp-toggler-icon span {
    display: block;
    width: 22px;
    height: 2px;
    background: #c5202b;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.bp-toggler-icon span:nth-child(2) {
    width: 16px;
}

.bp-toggler:hover .bp-toggler-icon span:nth-child(2) {
    width: 22px;
}

/* ==========================================================================
   Offcanvas Mobile Menu
   ========================================================================== */

.bp-offcanvas {
    width: 300px !important;
    border-left: none !important;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08) !important;
}

.bp-offcanvas-header {
    padding: 24px 24px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bp-offcanvas-close {
    background: rgba(197, 32, 43, 0.1);
    color: #c5202b;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;

    cursor: pointer;
    transition: all 0.3s ease;
}

.bp-offcanvas-close:hover {}

.bp-offcanvas-body {
    padding: 24px !important;
    display: flex;
    flex-direction: column;
}

.bp-mobile-nav {
    margin-bottom: 8px;
}

.bp-mobile-link {
    font-family: var(--font-heading) !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #0F172A !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.25s ease !important;
    display: block;
}

.bp-mobile-link:hover {
    color: #c5202b !important;
}

.bp-mobile-link:last-child {
    border-bottom: none;
}

/* Override old .navbar style from style.css to avoid conflicts */
nav.bp-navbar {
    display: flex !important;
    position: fixed !important;
    background-color: transparent !important;
    /* let our glass bg take over */
    padding-top: 18px !important;
    padding-bottom: 18px !important;
    justify-content: unset !important;
    align-items: center !important;
}

nav.bp-navbar.navbar-scrolled {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

/* ==========================================================================
   Outlets Section — "Built for All Types of Outlets"
   ========================================================================== */

.outlets-section {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(160deg, #f8faff 0%, #ffffff 50%, #fef6f6 100%);
    overflow: hidden;
}

/* Subtle decorative background blob */
.outlets-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -160px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(197, 32, 43, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.outlets-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* --- Section Header --- */
.outlets-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.outlets-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(197, 32, 43, 0.08);
    color: #c5202b;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1px solid rgba(197, 32, 43, 0.12);
    animation: pulse-dot 2s infinite;
}

.outlets-badge svg {
    flex-shrink: 0;
}

.outlets-heading {
    font-family: var(--font-heading) !important;
    font-size: clamp(28px, 4vw, 44px) !important;
    font-weight: 700 !important;
    color: #0F172A !important;
    line-height: 1.2 !important;
    letter-spacing: -0.5px;
    margin-bottom: 18px !important;
    transition: font-size 0.3s ease;
}

.outlets-desc {
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    color: #64748b !important;
    line-height: 1.75 !important;
    max-width: 580px;
    margin: 0 auto !important;
}

/* --- Cards Grid --- */
.outlets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

/* --- Individual Card --- */
.outlet-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 20px;
    padding: 20px 25px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.32s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.32s ease,
        border-color 0.32s ease;

    /* Scroll-reveal: start hidden */
    opacity: 0;
    transform: translateY(28px);
}

/* When card is revealed by IntersectionObserver */
.outlet-card.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.32s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.32s ease,
        border-color 0.32s ease;
}

/* Hover lift */
.outlet-card:hover {
    /* transform: translateY(-8px); */
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
    background: rgb(197 32 43 / 0.1);
    border-color: rgba(197, 32, 43, 0.15);
}

/* --- Card Icon Wrapper --- */
.outlet-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 12px;
    flex-shrink: 0;
    /* background: #f8fafc;
    border: 1px solid #f1f5f9; */
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.outlet-card-icon svg {
    width: 24px;
    height: 24px;
    fill: #64748b;
    transition: all 0.3s ease;
}

.outlet-card:hover .outlet-card-icon {
    transform: scale(1.35) translateY(-4px);
    /* background: #ffffff; */
    /* box-shadow: 0 10px 20px rgba(197, 32, 43, 0.1);
    border-color: rgba(197, 32, 43, 0.2); */
}

.outlet-card:hover .outlet-card-icon svg {
    fill: #c5202b;
}

/* --- Card Text --- */
.outlet-card-title {
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    margin: 0 !important;
    line-height: 1.3;
}

.outlet-card-sub {
    font-family: var(--font-body) !important;
    font-size: 13px !important;
    color: #94a3b8 !important;
    margin: 0 !important;
    line-height: 1.5;
    flex: 1;
}

/* --- Arrow indicator --- */
.outlet-card-arrow {
    display: inline-block;
    font-size: 16px;
    color: #cbd5e1;
    margin-top: 8px;
    transition: color 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
}

.outlet-card:hover .outlet-card-arrow {
    color: #c5202b;
    transform: translateX(5px);
}

/* --- CTA Area --- */
.outlets-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.outlets-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #c5202b 0%, #e63946 100%) !important;
    border: none !important;
    border-radius: 14px !important;
    padding: 14px 36px !important;
    text-decoration: none !important;
    box-shadow: 0 6px 24px rgba(197, 32, 43, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    letter-spacing: 0.2px;
}

.outlets-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 36px rgba(197, 32, 43, 0.4) !important;
    color: #ffffff !important;
}

.outlets-cta-btn svg {
    transition: transform 0.3s ease;
}

.outlets-cta-btn:hover svg {
    transform: translateX(4px);
}

.outlets-cta-note {
    font-size: 13px !important;
    color: #94a3b8 !important;
    margin: 0 !important;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .outlets-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .outlets-section {
        padding: 72px 0 56px;
    }

    .outlets-header {
        margin-bottom: 40px;
    }

    .outlets-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .outlet-card {
        padding: 24px 20px 22px;
    }

}

@media (max-width: 576px) {

    .outlets-header,
    .section-title {
        text-align: center;
        margin-bottom: 30px;
    }

    .outlets-heading {
        font-size: 24px !important;
        margin-bottom: 12px;
    }

    .outlets-desc {
        font-size: 14px;
        margin: 0 auto;
    }

    .outlets-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .outlet-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        padding: 30px 24px;
    }

    .outlet-card-icon {
        width: 56px;
        height: 56px;
        flex-shrink: 0;
        margin: 0 auto 8px;
    }

    .outlet-card-sub {
        display: block;
        opacity: 0.8;
    }

    .outlet-card-arrow {
        margin-top: 10px;
        margin-left: 0;
        align-self: center;
    }

    .more-que-form {
        padding: 30px !important;
    }

}

/* ==========================================================================
   Storytelling Sections (Apple Style)
   ========================================================================== */

.story-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Decorative Blobs for Storytelling */
.story-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 32, 43, 0.03) 0%, transparent 70%);
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

.story-section:nth-child(even)::before {
    left: auto;
    right: 10%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
}

.story-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 120px;
}

/* Alternating Rows */
.story-section:nth-child(even) .story-container {
    flex-direction: row-reverse;
}

.story-content {
    flex: 1;
    text-align: left;
}

.story-section:nth-child(even) .story-content {
    text-align: left;
}

.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(197, 32, 43, 0.05);
    color: var(--primary-red);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 100px;
    margin-bottom: 28px;
    border: 1px solid rgba(197, 32, 43, 0.1);
    animation: pulse-dot 2s infinite;
}

.story-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-red);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(197, 32, 43, 0.4);
}

.story-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1.08;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
}

.story-description {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
    color: #424245;
    line-height: 1.6;
    max-width: 580px;
    margin-bottom: 40px;
}

.story-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-red);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.story-link:hover {
    gap: 10px;
    opacity: 0.8;
}

.story-link svg {
    transition: transform 0.3s ease;
}

.story-link:hover svg {
    transform: translateX(3px);
}

/* Floating Device Mockup */
.story-visual {
    position: relative;
    flex: 1.2;
    display: flex;
    justify-content: center;
    perspective: 1000px;
    z-index: 2;
}

.story-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(197, 32, 43, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.2, 0, 0.2, 1);
}

.story-visual.revealed::before {
    opacity: 1;
    width: 130%;
    height: 130%;
}

.story-section:nth-child(even) .story-visual::before {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
}

.floating-mockup {
    width: 100%;
    max-width: 650px;
    border-radius: 20px;
    /* box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.2); */
    transition: all 0.8s cubic-bezier(0.2, 0, 0.2, 1);
    animation: floatAnim 8s ease-in-out infinite;
    transform-style: preserve-3d;
}

@media (max-width: 768px) {
    .floating-mockup {
        max-width: 90%;
        margin: 0 auto;
    }
}

.floating-mockup:hover {
    transform: translateY(-8px) rotateX(1deg);
}

@keyframes floatAnim {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Gradients */
.bg-cream-blush {
    background: var(--grad-cream-blush);
}

.bg-lavender-white {
    background: var(--grad-lavender-white);
}

.bg-mint-white {
    background: var(--grad-mint-white);
}

.bg-blue-white {
    background: var(--grad-blue-white);
}

.bg-pure-white {
    background: #ffffff;
}

/* Section Transitions */
.story-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3));
    pointer-events: none;
}

/* Mobile Optimizations */
@media (max-width: 992px) {
    .story-container {
        flex-direction: column !important;
        text-align: center;
        gap: 50px;
        padding: 0 24px;
    }

    .story-content {
        text-align: center !important;
    }

    .story-description {
        margin: 0 auto;
    }

    .story-section {
        padding: 40px 0;
    }

    .story-heading {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .story-description {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .mobile-top-margin-45 {
        margin-top: 45px !important;
    }
}

@media (max-width: 576px) {
    .story-heading {
        font-size: 1.8rem;
    }

    .story-description {
        font-size: 1rem;
    }

    .floating-mockup {
        max-width: 95%;
        margin: 0 auto;
    }
}

/* --- Storytelling & App Hero Reveal Animations --- */
.story-reveal,
.app-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.story-reveal.revealed,
.app-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for storytelling elements */
.story-badge.story-reveal {
    transition-delay: 0.1s;
}

.story-heading.story-reveal {
    transition-delay: 0.2s;
}

.story-description.story-reveal {
    transition-delay: 0.3s;
}

.story-visual.story-reveal {
    transition-delay: 0.4s;
}

/* Reveal Animations for App Section */
.app-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.app-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Mobile App Premium Section --- */
.app-premium-section {
    padding: 120px 0;
    overflow: hidden;
    background: #ffffff;
    position: relative;
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.app-headline {
    font-family: 'Clash Display', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #111111;
    margin-bottom: 40px;
}

/* Interactive Feature Cards */
.app-feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.app-feature-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.app-feature-card:hover,
.app-feature-card.active {
    background: #fffcfc;
    border-color: rgba(197, 32, 43, 0.2);
    transform: translateX(12px);
    box-shadow: 0 15px 35px rgba(197, 32, 43, 0.08);
}

.app-feature-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    min-height: 280px;
    height: 100%;
    width: 4px;
    background: var(--primary-red);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.app-feature-card:hover::before,
.app-feature-card.active::before {
    transform: scaleY(1);
}

.card-number {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(197, 32, 43, 0.2);
}

.card-title {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
    line-height: 1.2;
}

.card-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Visualization Container */
.app-visual-container {
    position: sticky;
    top: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-display-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 600px;
}

.phone-mockup-img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-height: 280px;
    height: 100%;
    max-height: 600px;
    object-fit: contain;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
}

.phone-mockup-img.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 992px) {
    .app-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .app-visual-container {
        position: relative;
        top: 0;
        margin-top: 40px;
    }

    .app-feature-card:hover,
    .app-feature-card.active {
        transform: translateY(-5px);
    }

    .app-headline {
        font-size: 2.8rem;
    }
}

@media (max-width: 1100px) {
    .app-headline {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .app-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .app-subtext {
        margin: 0 auto 40px;
    }

    .app-features {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .app-visual-container {
        padding-top: 40px;
    }

    .phone-mockup {
        width: 180px;
        right: 10%;
    }
}

@media (max-width: 576px) {
    .app-headline {
        font-size: 2.8rem;
    }

    .phone-mockup {
        width: 150px;
        right: 5%;
    }
}

/* Play Store Button Premium Design */
.play-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #f1f3f4;
    border: 1px solid #dadce0;
    padding: 10px 28px;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 15px;
}

.play-store-btn:hover {
    background: #e8eaed;
    border-color: #bdc1c6;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.ps-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.ps-tagline {
    font-size: 11px;
    font-weight: 500;
    color: #5f6368;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.ps-title {
    font-size: 20px;
    font-weight: 700;
    color: #202124;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-top: 2px;
}

@media (max-width: 576px) {
    .play-store-btn {
        width: 100%;
        justify-content: center;
    }
}


@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

/* ==========================================================================
   Premium Features Grid Section Redesign (Why Choose BillerPe)
   ========================================================================== */
.premium-features-row {
    --card-bg: #ffffff;
    --card-border: rgba(197, 32, 43, 0.08);
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    --card-shadow-hover: 0 20px 40px rgba(197, 32, 43, 0.08);
    --primary-gradient: linear-gradient(135deg, #c5202b 0%, #ff4b2b 100%);
    --icon-bg: #fff5f5;

    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    margin-top: 40px !important;
    position: relative;
    z-index: 1;
}

.premium-features-row::before,
.premium-features-row::after {
    display: none !important;
    /* Bootstrap 4 clearfix override */
}

/* Make columns act as grid items */
.premium-features-row>.col-lg-3.col-md-6.col-sm-12 {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding: 10px !important;
    margin: 0 !important;
}

/* The actual card (formerly icon-box) */
.premium-features-row .icon-box {
    background: var(--card-bg) !important;
    border: 1px solid var(--card-border);
    border-radius: 28px;
    padding: 40px 25px;
    box-shadow: var(--card-shadow);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* min-height: 280px;  */
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 0 !important;
    /* overriding style.css margin-bottom: 1.5rem */
    align-items: center;
    text-align: center;
    cursor: default;
}


/* Glass effect highlight */
.premium-features-row .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 280px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}

.premium-features-row .icon-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(197, 32, 43, 0.2);
}

/* Icon Wrapper Styling */
.premium-features-row .icon-box>svg {
    max-width: none !important;
    /* overriding style.css max-width: 60px */
    width: 64px !important;
    height: 64px !important;
    padding: 16px;
    background: var(--icon-bg);
    border-radius: 18px;
    margin-bottom: 24px;
    fill: #c5202b !important;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 16px rgba(197, 32, 43, 0.04);
}

.premium-features-row .icon-box:hover>svg {
    background: var(--primary-gradient);
    fill: #ffffff !important;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 24px rgba(197, 32, 43, 0.25);
}

/* Text Styling */
.premium-features-row .icon-box p {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin: 0 !important;
    font-family: var(--font-heading, "Inter", sans-serif);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.premium-features-row .icon-box:hover p {
    color: #c5202b !important;
}

/* Backsplash visual on hover */
.premium-features-row .icon-box::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(197, 32, 43, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    z-index: -1;
    transition: transform 0.6s ease;
}

.premium-features-row .icon-box:hover::after {
    transform: scale(1.8);
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .premium-features-row {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 991px) {
    .premium-features-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 575px) {
    .premium-features-row {
        grid-template-columns: 1fr !important;
    }

    .premium-features-row .icon-box {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   Client Marquee Section
   ========================================================================= */

.client-marquee-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
    gap: 80px;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    flex: 0 0 auto;
    width: 100px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.marquee-item img {
    max-width: 100%;
    max-min-height: 280px;
    height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.marquee-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .client-marquee-section {
        padding: 40px 0;
    }

    .marquee-track {
        gap: 40px;
    }

    .marquee-item {
        width: 120px;
        height: 60px;
    }
}

/* ==========================================================================
   Testimonial Section
   ========================================================================== */

.testimonial-section {
    padding: 100px 0;
    background: #fdfdfd;
    overflow: hidden;
}

.testimonial-slider-wrapper {
    position: relative;
    padding: 0 15px;
}

.testimonial-item {
    padding: 20px 10px;
}

.premium-single-card {
    background: #fff;
    border: 1px solid rgba(197, 32, 43, 0.08);
    border-radius: 24px;
    padding: 50px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.premium-single-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(197, 32, 43, 0.08);
    border-color: rgba(197, 32, 43, 0.2);
}

.premium-single-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #c5202b 0%, #ff4b2b 100%);
    border-radius: 24px 0 0 24px;
}

.testimonial-logo-wrapper {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 10px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.restaurant-premium-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.restaurant-premium-name {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

.premium-stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-content-box {
    position: relative;
    padding-left: 40px;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.quote-icon-large {
    font-size: 3.5rem;
    color: rgba(197, 32, 43, 0.1);
    position: absolute;
    top: -20px;
    left: 20px;
}

.testimonial-text-large {
    font-size: 1.35rem;
    line-height: 1.8;
    color: #444;
    font-weight: 500;
    font-style: italic;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Custom Slider Navigation */
.testimonial-slider-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    font-size: 1.2rem;
}

.slider-nav-btn:hover {
    background: #c5202b;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(197, 32, 43, 0.2);
    border-color: #c5202b;
}

/* Carousel Dots Customization */
.owl-theme .owl-dots {
    margin-top: 40px !important;
}

.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: #e2e8f0 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 5px 8px !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    width: 35px;
    background: #c5202b !important;
}

@media (max-width: 992px) {
    .testimonial-content-box {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding-top: 30px;
        margin-top: 30px;
        text-align: center;
    }

    .quote-icon-large {
        left: 50%;
        transform: translateX(-50%);
        top: 10px;
    }

    .testimonial-text-large {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 60px 0;
    }

    .premium-single-card {
        padding: 30px 20px;
    }

    .testimonial-slider-nav {
        margin-top: 30px;
    }

    .slider-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .testimonial-logo-wrapper {
        width: 120px;
        height: 120px;
    }
}

/* contect form */
.book-demo-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(197, 32, 43, 0.1);
    color: #c5202b;
    transition: all 0.3s ease;
}

.book-demo-icon-box i {
    font-size: 2rem;
    margin: 0;
    transition: transform 0.3s ease;
}

.book-demo-icon-box:hover {
    background-color: #c5202b;
}

.book-demo-icon-box:hover i {
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

/* Book Demo Left Side */
.book-demo-left-side {
    padding-right: 20px;
}

.book-demo-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #111;
    font-family: var(--font-heading);
    line-height: 1.15;
    margin-top: 10px;
    margin-bottom: 0;
}

.book-demo-highlight {
    color: #c5202b;
    display: block;
}

.book-demo-heading-line {
    width: 40px;
    height: 4px;
    background-color: #c5202b;
    border-radius: 2px;
    margin: 14px 0 20px 0;
}

.book-demo-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Feature list */
.book-demo-features {
    margin-top: 10px;
}

.feature-icon-box {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background-color: #c5202b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 12px rgba(197, 32, 43, 0.25);
}

.book-demo-features li:hover .feature-icon-box {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(197, 32, 43, 0.35);
}

.feature-text {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
}

@media (max-width: 991px) {
    .book-demo-left-side {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .book-demo-heading {
        font-size: 2.4rem;
    }
}

.more-que-form {
    background-color: #fff;
    padding: 50px 50px 60px 50px;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
}



.help-block .with-errors ul li {
    margin: 0 !important;
}

.list-unstyled li {
    color: #c5202b !important;
    margin: 5px !important;
}

.billerpeForm input[type="text"],
.billerpeForm input[type="email"],
.billerpeForm input[type="phone"],
.billerpeForm input[type="number"],
.billerpeForm input[type="tel"],
.billerpeForm input[type="date"],
.billerpeForm input[type="password"],
.billerpeForm textarea {
    background-color: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 10px !important;
}

/* Input Icons */
.input-icon-wrap {
    position: relative;
}

.input-field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #c5202b;
    font-size: 1rem;
    z-index: 2;
    pointer-events: none;
}

.input-field-icon--top {
    top: 18px;
    transform: none;
}

.input-icon-wrap .form-control.billerpeInput {
    padding-left: 40px !important;
}

/* Footer */
.background-demo {
    background: linear-gradient(135deg, #fff5f5, #fde2e2);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.background-demo::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200px;
    bottom: -50px;
    left: -20%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.08) 10%, transparent 10%);
    background-size: 20px 20px;
}

.background-demo::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 200px;
    bottom: 0;
    left: -10%;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 50% 50% 0 0;
}

.copyright-area {
    background-color: transparent !important;
}

.footer-text p {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    opacity: 0.8;
}

.footer-widget-heading h3 {
    font-family: var(--font-heading) !important;
    /* font-size: 16px !important; */
}

.footer-widget ul li {
    font-family: var(--font-body) !important;
    margin-bottom: 8px !important;
}

.footer-widget ul li a {
    font-family: var(--font-body) !important;
    /* font-size: 14px !important; */
}

.copyright-text p {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
}

/* --- About Us Redesign --- */
.about-hero-section {
    padding: 120px 0 60px;
    background: var(--grad-blue-white);
    overflow: hidden;
}

.about-image-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.main-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* .main-image-wrapper img:hover {
    transform: scale(1.02);
} */

.secondary-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: -50px;
    padding: 0 30px;
}

.secondary-images img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.goal-card-premium {
    background: #c5202b;
    padding: 30px;
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(197, 32, 43, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.goal-card-premium span {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.goal-card-premium p {
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
}

.lead-text {
    font-size: 1.25rem;
    color: #333;
    font-weight: 500;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #444;
}

.feat-item i {
    font-size: 1.2rem;
}

.premium-glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.premium-glass-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 20px 50px rgba(197, 32, 43, 0.1);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(197, 32, 43, 0.1);
    color: #c5202b;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

@media (max-width: 992px) {
    .about-hero-section {
        padding: 80px 0 40px;
        text-align: center;
    }

    .secondary-images {
        margin-top: 20px;
        padding: 0;
    }

    .about-image-grid {
        margin-bottom: 40px;
    }
}

/* Custom Contact Form Styles */
.rts-contact-page-form-area {
    position: relative;
    background-image: url(../../images/contact-bg.png);
    background-repeat: no-repeat;
    z-index: 1;
    padding-top: 80px;
    font-family: var(--font-body);
}

/* Red overlay over the background image */
.rts-contact-page-form-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(197, 32, 43, 0.85); */
    /* #c5202b with 85% opacity */
    z-index: -1;
}

.custom-contact-card {
    border-radius: 20px;
    box-shadow: 0 25px 60px rgb(205 57 57 / 32%);
    background: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

/* .custom-contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, #c5202b, #ff4b55);
        } */

.custom-contact-header h2 {
    font-weight: 800;
    font-family: var(--font-heading);
    color: #1a202c;
    font-size: 36px;
    letter-spacing: -0.5px;
}

.custom-underline {
    height: 3px;
    width: 60px;
    background-color: #c5202b;
    border-radius: 2px;
}

.custom-icon-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(197, 32, 43, 0.08);
    color: #c5202b !important;
    font-size: 18px;
}

.custom-input {
    border: 1px solid #e2e8f0 !important;
    border-radius: 6px !important;
    padding: 12px 15px !important;
    font-size: 15px !important;
    color: #4a5568 !important;
    transition: all 0.3s ease !important;
    background: #fff !important;
    margin-bottom: 0 !important;
}

.custom-input:focus {
    border-color: #c5202b !important;
    box-shadow: 0 0 0 3px rgba(197, 32, 43, 0.1) !important;
    outline: none !important;
}

.custom-input::placeholder {
    color: #a0aec0 !important;
}

.custom-submit-btn {
    background-color: #c5202b !important;
    color: white !important;
    border-radius: 8px !important;
    border: none !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    width: 100% !important;
    padding: 14px 20px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    transition: background-color 0.3s ease !important;
    font-family: var(--font-heading);
    margin: 0 !important;
}

.custom-submit-btn:hover {
    background-color: #a51822 !important;
}

/* ==========================================================================
   Billing POS Hero Section Redesign
   ========================================================================== */
.billing-pos-home-section {
    position: relative;
    background-image: url(../../images/billing-pos-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    padding: 140px 0 80px;
    font-family: var(--font-body);
}



/* Hide original showcase overlay if present */
.billing-pos-home-section .showcase-overlay {
    display: none !important;
}




.billing-pos-home-section .main-banner-content-billing .resp-center-title {
    font-family: var(--font-heading);
    font-weight: 800;
}

/* Hide the illustration image to match the contact layout, only keeping form */
.billing-pos-home-section .billing-pos-home-img {
    display: none !important;
}

/* Ensure the form box matches the new style */
.billing-pos-home-section .billing-pos-top-form {
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    background: #fff;
    padding: 35px 30px;
    position: relative;
    /* margin-top: 20px; */
}

/* Form Titles & Text override back to dark inside the form */
.billing-pos-home-section .billing-pos-top-form .resp-center-title {
    color: #1a202c !important;
    font-size: 28px;
    margin-bottom: 25px !important;
    text-align: center;
}

.billing-pos-home-section .billing-pos-top-form label {
    color: #4a5568 !important;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

.billing-pos-home-section .billing-pos-top-form .form-check-label span {
    color: #718096 !important;
}

/* Inputs */
.billing-pos-home-section .billing-pos-top-form .billerpeInput {
    border: 1px solid #e2e8f0 !important;
    border-radius: 6px !important;
    padding: 12px 15px !important;
    font-size: 15px !important;
    color: #4a5568 !important;
    transition: all 0.3s ease !important;
    background: #fff !important;
    margin-bottom: 10px;
}

.billing-pos-home-section .billing-pos-top-form .billerpeInput:focus {
    border-color: #c5202b !important;
    box-shadow: 0 0 0 3px rgba(197, 32, 43, 0.1) !important;
    outline: none !important;
}

/* Submit Button */
.billing-pos-home-section .billing-pos-top-form .marketing-page-submit-button {
    background-color: #c5202b !important;
    color: white !important;
    border-radius: 8px !important;
    border: none !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    width: 100% !important;
    padding: 14px 20px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    transition: background-color 0.3s ease !important;
    font-family: var(--font-heading);
}

.billing-pos-home-section .billing-pos-top-form .marketing-page-submit-button:hover {
    background-color: #a51822 !important;
}

/* Contact Details Info on the Left and below form */
.billing-pos-home-section .support-img {
    background-color: #c5202b !important;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.billing-pos-home-section .support-img svg {
    fill: #ffffff !important;
    width: 20px;
    height: 20px;
}

.billing-pos-home-section .contect-now {
    gap: 10px;
    background: #fff;
}

/* Clean up margin/padding on mobile for better fit */
@media (max-width: 991px) {
    .billing-pos-home-section {
        padding: 100px 0 60px;
    }

    .billing-pos-home-section .billing-pos-top-form {
        margin-top: 40px;
        padding: 25px 20px;
    }
}

/* Premium Custom Checkbox Styling */
.billing-pos-top-form .form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 15px;
    margin-bottom: 25px;
    padding-left: 0;
    /* Override Bootstrap default */
}

.billing-pos-top-form .form-check .form-check-input {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px !important;
    border: 2px solid #cbd5e1 !important;
    border-radius: 6px !important;
    background-color: #ffffff !important;
    margin-top: 2px !important;
    margin-left: 0 !important;
    /* Override Bootstrap default */
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    flex-shrink: 0;
    float: none !important;
    /* Override Bootstrap default */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
    padding: 0 !important;
}

.billing-pos-top-form .form-check .form-check-input:hover {
    border-color: #c5202b !important;
    box-shadow: 0 0 0 4px rgba(197, 32, 43, 0.1) !important;
}

.billing-pos-top-form .form-check .form-check-input:checked {
    background-color: #c5202b !important;
    border-color: #c5202b !important;
    box-shadow: 0 4px 12px rgba(197, 32, 43, 0.25) !important;
}

.billing-pos-top-form .form-check .form-check-input:checked::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    animation: checkmark-pop 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes checkmark-pop {
    0% {
        opacity: 0;
        transform: rotate(45deg) scale(0.5);
    }

    100% {
        opacity: 1;
        transform: rotate(45deg) scale(1);
    }
}

.billing-pos-top-form .form-check-label {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    cursor: pointer;
    margin-bottom: 0;
}

.billing-pos-top-form .form-check-label span {
    color: #4a5568 !important;
}

.billing-pos-top-form .form-check-label span.hs-form-required {
    color: #c5202b !important;
    margin-left: 4px;
    font-weight: 700;
}

/* --- Premium Pricing Features Section Redesign --- */
.premium-features-section {
    font-family: var(--font-body);
    padding: 20px 0;
    position: relative;
}

.premium-features-section .zig-zeg-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.premium-features-section .zig-zeg-title span {
    color: #c5202b;
}

.premium-features-section .pos-prising {
    font-size: 42px;
    font-weight: 800;
    color: #c5202b;
    line-height: 1;
}

.premium-features-section .star {
    color: #c5202b;
    font-size: 20px;
    font-weight: 700;
    vertical-align: super;
}

.premium-features-section .price-strike {
    font-size: 20px;
    color: #a0aec0;
    text-decoration: line-through;
    margin-left: 15px;
    font-weight: 500;
}

.premium-features-section .pricing-period {
    display: block;
    font-size: 14px;
    color: #718096;
    margin-top: 5px;
    margin-bottom: 25px;
}

.premium-features-section .premium-features-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 35px;
}

.premium-features-section .premium-features-list li {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 12px;
    padding-bottom: 10px;
    margin-bottom: 0px;
    border-bottom: 1px solid #f1f5f9;
}

.premium-features-section .premium-features-list li:last-child {
    border-bottom: none;
}

.premium-features-section .feature-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: rgba(197, 32, 43, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.premium-features-section .feature-icon-wrapper i {
    color: #c5202b;
    font-size: 14px;
}

/* Feature 2 specific check icon */
.premium-features-section .feature-icon-wrapper.check-style {
    background-color: transparent;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.premium-features-section .feature-icon-wrapper.check-style i {
    color: #fc8181;
    font-size: 20px;
}

.premium-features-section .premium-btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.premium-features-section .btn-premium-solid {
    background-color: #c5202b;
    color: #ffffff;
    border: 2px solid #c5202b;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.premium-features-section .btn-premium-solid:hover {
    background-color: #a51822;
    border-color: #a51822;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(197, 32, 43, 0.2);
}

.premium-features-section .btn-premium-outline {
    background-color: transparent;
    color: #c5202b;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.premium-features-section .btn-premium-outline:hover {
    border-color: #c5202b;
    color: #c5202b;
    background-color: rgba(197, 32, 43, 0.05);
}

.premium-features-section .btn-icon-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.premium-features-section .btn-premium-solid .btn-icon-circle {
    background-color: #ffffff;
    color: #c5202b;
}

.premium-features-section .btn-premium-outline .btn-icon-circle {
    border: 1px solid #c5202b;
    color: #c5202b;
}

.premium-features-section p.subtitle {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .premium-features-section .zig-zeg-img {
        margin-top: 30px;
    }
}

.pricing-bg {
    background: radial-gradient(circle at 15% 20%, rgba(227, 24, 55, 0.18), transparent 45%),
        radial-gradient(circle at 80% 30%, rgba(255, 120, 150, 0.15), transparent 50%),
        linear-gradient(180deg, #fff6f7 0%, #ffffff 100%) !important;
    border-radius: 10px;
}

/* --- Premium Modal Redesign --- */
.premium-modal .modal__panel {
    background: #ffffff;
    border-radius: 20px;
    border: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.premium-modal .modal__panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #c5202b, #ff4b55);
    border-radius: 20px 20px 0 0;
    z-index: 10;
}

.premium-modal .modal__header {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 24px 30px;
}

.premium-modal .modal__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    color: #1e293b;
    margin: 0;
}

.premium-modal .modal__close {
    background: #ffffff;
    color: #64748b;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 4px 10px 10px 8px;
    display: grid;
    place-items: center;
}

.premium-modal .modal__close:hover {
    background: #c5202b;
    color: white;
    border-color: #c5202b;
    transform: rotate(90deg);
}

.premium-modal .slide {
    padding: 30px;
}

.premium-modal .field label {
    font-family: var(--font-body);
    font-weight: 600;
    color: #475569;
    font-size: 14px;
    margin-bottom: 8px;
}

.premium-modal .field input {
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: #1e293b;
    transition: all 0.3s ease;
}

.premium-modal .field input:focus {
    background-color: #ffffff;
    border-color: #c5202b;
    box-shadow: 0 0 0 4px rgba(197, 32, 43, 0.1);
    outline: none;
}

.premium-modal .actions {
    margin-top: 24px;
    position: relative;
    right: 0;
    bottom: 0;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    justify-content: flex-end;
}

.premium-modal .btn-ghost {
    border: 1px solid #cbd5e1 !important;
    color: #475569;
    font-weight: 600;
    background: #ffffff;
    border-radius: 10px;
    padding: 12px 24px;
}

.premium-modal .btn-ghost:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.premium-modal .redias-btn {
    background: linear-gradient(135deg, #c5202b 0%, #ff4b55 100%);
    border: none;
    border-radius: 10px;
    padding: 12px 28px;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 16px -4px rgba(197, 32, 43, 0.3);
    transition: all 0.3s ease;
}

.premium-modal .redias-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -4px rgba(197, 32, 43, 0.4);
}

/* Summary section styling */
.premium-modal h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 22px;
}

.premium-modal .summary-list,
.premium-modal .payment-plan-details {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.premium-modal .summary-list span {
    color: #64748b;
    font-size: 14px;
}

.premium-modal .summary-list .val {
    color: #1e293b;
    font-weight: 600;
    font-size: 15px;
}

.premium-modal .payment-plan-details h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #c5202b;
    margin-bottom: 15px;
    font-size: 18px;
}

.premium-modal .pos-prising {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.premium-modal .price-strike {
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
    font-size: 16px;
    margin-left: 10px;
}

.premium-modal .plan-calculation {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin-top: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.premium-modal .plan-calculation .d-flex {
    margin-bottom: 12px;
}

.premium-modal .plan-calculation p {
    font-weight: 600;
    color: #475569;
    font-size: 15px;
    margin-bottom: 0;
}

.premium-modal .plan-calculation input {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 8px 12px;
    width: 200px;
    margin-bottom: 0;
}

.premium-modal .Coupon-btn {
    background: #1e293b;
    color: white;
    border: none !important;
    border-radius: 8px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s;
}

.premium-modal .Coupon-btn:hover {
    background: #c5202b;
}

.premium-modal .plan-calculation .d-flex:last-child {
    border-top: 2px dashed #e2e8f0;
    padding-top: 16px;
    margin-top: 16px;
    margin-bottom: 0;
}

.premium-modal .plan-calculation .d-flex:last-child p,
.premium-modal .plan-calculation .d-flex:last-child #m_grand_amount,
.premium-modal .plan-calculation .d-flex:last-child #w_grand_amount {
    font-size: 20px;
    font-weight: 800;
    color: #c5202b;
}

@media only screen and (max-width: 770px) {
    .premium-modal .slide {
        padding: 20px;
    }

    .premium-modal .summary-list,
    .premium-modal .payment-plan-details {
        width: 100%;
        margin-bottom: 10px;
    }

    .premium-modal .mb-box-clumn {
        flex-direction: column !important;
    }
}

/* Premium Modal Input & Header Icons */
.premium-modal .modal-title-icon {
    width: 48px;
    height: 48px;
    background: rgba(197, 32, 43, 0.1);
    color: #c5202b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.premium-modal .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.premium-modal .input-wrapper input {
    padding-left: 48px !important;
}

.premium-modal .input-icon-box {
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(197, 32, 43, 0.1);
    color: #c5202b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 1;
}

/* ==========================================================================
   Premium Shop Page Styles
   ========================================================================== */

.shop-main-body {
    background: #ffffff;
    padding-bottom: 100px;
}

.premium-shop-hero {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.premium-shop-hero .blur-shape {
    opacity: 0.3;
}

.shop-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.shop-hero-title span {
    color: var(--primary-red);
}

.shop-hero-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Product Grid */
.premium-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    padding: 40px 0;
}

/* Premium Product Card */
.premium-product-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.premium-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(197, 32, 43, 0.1);
}

.card-image-wrapper {
    position: relative;
    height: 340px;
    background: #f8fafc;
    overflow: hidden;
}

.card-image-wrapper .slider-wrapper {
    height: 100%;
}

.card-image-wrapper .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-product-card:hover .slide img {
    transform: scale(1.05);
}

/* Quick View Overlay */
.premium-quick-view-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 5;
}

.premium-product-card:hover .premium-quick-view-overlay {
    opacity: 1;
}

.premium-quick-view-btn {
    background: #ffffff;
    color: #1a1a1a;
    border: none;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.premium-product-card:hover .premium-quick-view-btn {
    transform: translateY(0);
}

.premium-quick-view-btn:hover {
    background: var(--primary-red);
    color: #ffffff;
}

/* Card Content */
.premium-product-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.premium-product-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-red);
    background: rgba(197, 32, 43, 0.05);
    padding: 4px 10px;
    border-radius: 100px;
    width: fit-content;
    margin-bottom: 12px;
}

.premium-product-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.2rem;
}

.premium-product-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-product-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.premium-add-to-cart {
    background: #0F172A;
    color: #ffffff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.premium-add-to-cart:hover {
    background: var(--primary-red);
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(197, 32, 43, 0.2);
}

.premium-add-to-cart svg {
    width: 20px;
    height: 20px;
}

/* Quick View Modal Redesign */
.premium-modal-backdrop {
    background: rgba(15, 23, 42, 0.4) !important;
    backdrop-filter: blur(12px) !important;
}

.premium-modal-content {
    border-radius: 32px !important;
    border: none !important;
    overflow: hidden;
    background: #ffffff !important;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2) !important;
}

.premium-modal-body {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    padding: 0 !important;
}

.premium-modal-slider-section {
    background: #f8fafc;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 500px;
}

.premium-modal-info-section {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
}

.premium-modal-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.premium-modal-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 30px;
}

.premium-feature-list {
    margin-bottom: 40px;
    flex-grow: 1;
}

.premium-feature-list h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 20px;
}

.premium-feature-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    color: #475569;
    font-size: 15px;
}

.premium-feature-list li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-size: 14px;
}

.premium-modal-actions {
    display: flex;
    gap: 16px;
    margin-top: auto;
}

.premium-modal-add-btn {
    background: #0F172A !important;
    color: #ffffff !important;
    border: none !important;
    padding: 18px 40px !important;
    border-radius: 16px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    flex-grow: 1;
    transition: all 0.3s ease !important;
}

.premium-modal-add-btn:hover {
    background: #1e293b !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2);
}

.premium-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 100px;
    background: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    z-index: 10;
    transition: all 0.3s ease;
    cursor: pointer;
}

.premium-modal-close:hover {
    transform: rotate(90deg);
    background: #f1f5f9;
}

/* Custom Slider Arrows & Dots */
.premium-slider-arrow {
    width: 44px;
    height: 44px;
    background: #ffffff !important;
    border-radius: 100px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    opacity: 0;
    transition: all 0.3s ease !important;
}

.card-image-wrapper:hover .premium-slider-arrow,
.premium-modal-slider-section:hover .premium-slider-arrow {
    opacity: 1;
}

.premium-slider-dots .dot {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.1) !important;
    border-radius: 100px;
    transition: all 0.3s ease !important;
}

.premium-slider-dots .dot.active {
    width: 24px;
    background: var(--primary-red) !important;
}

/* Cart Sidebar Premium Polish */
.cart-sidebar {
    background: #ffffff !important;
    border-left: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.cart-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding: 30px 24px !important;
}

.cart-item {
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 16px !important;
    padding: 16px !important;
    transition: all 0.3s ease !important;
}

.cart-item:hover {
    border-color: rgba(197, 32, 43, 0.1) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04) !important;
}

.checkout-btn {
    background: #0F172A !important;
    border-radius: 16px !important;
    padding: 18px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

.checkout-btn:not(:disabled):hover {
    background: var(--primary-red) !important;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .premium-modal-body {
        grid-template-columns: 1fr;
    }

    .premium-modal-slider-section {
        min-height: 350px;
        padding: 30px;
    }

    .premium-modal-info-section {
        padding: 40px 30px;
    }
}

/* Premium Cart Trigger in Navbar */
.premium-cart-trigger {
    position: relative;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 12px;
    color: #0F172A;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-cart-trigger:hover {
    background: #ffffff;
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 32, 43, 0.1);
}

.premium-cart-trigger svg {
    width: 20px;
    height: 20px;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-red);
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(197, 32, 43, 0.2);
}

/* Feature List Polish */
.premium-feature-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

.premium-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    background: rgba(197, 32, 43, 0.1);
    border-radius: 50%;
}

.premium-feature-list li::after {
    content: "✓";
    position: absolute;
    left: 4px;
    top: 2px;
    color: var(--primary-red);
    font-size: 12px;
    font-weight: 700;
}

/* ==========================================================================
   Policy Pages (Terms, Privacy, etc.)
   ========================================================================== */

.policy-hero {
    background: var(--soft-bg);
    padding: 75px 0 75px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.policy-hero .hero-title {
    margin-bottom: 0;
}

.policy-content-section {
    padding: 80px 0;
    background: #fcfcfc;
    position: relative;
}

/* .policy-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
} */

.policy-body h2 {
    font-family: var(--font-heading);
    color: #0F172A;
    font-weight: 700;
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-body h2::before {
    content: "";
    width: 6px;
    height: 24px;
    background: var(--primary-red);
    border-radius: 100px;
}

.policy-body p {
    color: #475569;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.policy-body strong {
    color: #1e293b;
    font-weight: 700;
}

.policy-body ol,
.policy-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-body li {
    color: #475569;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .policy-hero {
        padding: 100px 0 60px;
    }

    .policy-card {
        padding: 30px 20px;
        border-radius: 24px;
    }

    .policy-body h2 {
        font-size: 1.5rem;
    }
}

/* --- Mobile Navbar Adjustments --- */
@media (max-width: 991px) {
    .bp-navbar .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-direction: row !important;
    }

    .bp-navbar-brand {
        position: relative;
        left: unset;
        transform: unset;
        margin: 0 !important;
        z-index: 1;
    }

    .bp-navbar .d-flex.d-lg-none {
        z-index: 2;
    }
}